home *** CD-ROM | disk | FTP | other *** search
/ Chip: 2005 Utilities / CHIP Utilities 2005 / CHIP Utilities 2005.iso / boot / menus / others.scn < prev   
Encoding:
Text File  |  2005-01-19  |  3.5 KB  |  61 lines

  1. #
  2. # Other Tools
  3. #
  4. others_menu:
  5. set textColor = color[white on black]
  6. clear
  7. set textColor = color[yellow on blue]
  8. print "                            ULTIMATE BOOT CD VER 3.2                            "
  9. print "                         http://www.ultimatebootcd.com/                         "
  10. print "                                                                                "
  11. set textColor = color[white on red]
  12. print "                                 [Other Tools]                                  "
  13. set textColor = color[white on cyan]
  14. print "                                                                                "
  15. set textColor = color[yellow on cyan]
  16. print " Antivirus Tools                                                                "
  17. set textColor = color[white on cyan]
  18. print " [F1] F-Prot Antivirus for DOS V3.16a (16 Jan 2005) *Personal use only          "
  19. print " [F2] McAfee Antivirus V4.32.0 (12 Jan 2005) *Personal use only                 "
  20. print " [F3] Avast! V7.7 for DOS (18 Jan 2005) *Personal use only                      "
  21. print " [F4] AntiVir Personal Edition V6.29.0.5 (18 Jan 2005) *Personal use only       "
  22. print "                                                                                "
  23. set textColor = color[yellow on cyan]
  24. print " Network Tools                                                                  "
  25. set textColor = color[white on cyan]
  26. print " [F5] Freesco (One-disk Router) V0.3.2  [F8] QNX Browser V4.00 (Modem)          "
  27. print " [F6] Arachne WWW Browser V1.79         [F9] QNX Browser V4.00 (Network)        "
  28. print " [F7] NetCopy V0.2                      [ 1] DOSRDP V2.0/XP (Demo)              "
  29. print "                                                                                "
  30. set textColor = color[yellow on cyan]
  31. print " Disk Image Tools                                                               "
  32. set textColor = color[white on cyan]
  33. print " [ 2] Disk Image Writer (Writes disk images on UBCD to physical floppy disks)   "
  34. print "                                                                                "
  35. print "                                                                                "
  36. print "                                                                                "
  37. print "                                                                                "
  38. print "                                                                                "
  39. set textColor = color[white on blue]
  40. print "             Please select an item (ESC to return to previous menu)             "
  41. set textColor = color[white on black]
  42.  
  43. #
  44. # Actions
  45. #
  46. getkey 500 goto hddboot80
  47. if ($lastKey == key[f1]); then bcdw \images\freedos.img \dosapps\fprot\startup.bat
  48. if ($lastKey == key[f2]); then bcdw \images\freedos.img \dosapps\mcafee\startup.bat
  49. if ($lastKey == key[f3]); then bcdw \images\freedos.img \dosapps\avast\startup.bat
  50. if ($lastKey == key[f4]); then bcdw \images\freedos.img \dosapps\antivir\startup.bat
  51. if ($lastKey == key[f5]); then memdisk \images\freesco.igz
  52. if ($lastKey == key[f6]); then memdisk \images\arachne.igz
  53. if ($lastKey == key[f7]); then bcdw \images\freedos.img \dosapps\netcopy\startup.bat
  54. if ($lastKey == key[f8]); then memdisk \images\qnxmodem.igz
  55. if ($lastKey == key[f9]); then memdisk \images\qnxnet.igz
  56. if ($lastKey == key[1]); then memdisk \images\fd32rdp.igz
  57. if ($lastKey == key[2]); then bcdw \images\freedos.img \dosapps\chooser\startup.bat
  58. if ($lastKey == key[esc]); then script main.scn
  59. goto others_menu
  60.  
  61.